reftests: Use shared_library, not shared_module
authorJames Westman <flyingpimonster@flyingpimonster.net>
Fri, 12 Apr 2019 19:04:01 +0000 (14:04 -0500)
committerJames Westman <flyingpimonster@flyingpimonster.net>
Fri, 12 Apr 2019 19:04:01 +0000 (14:04 -0500)
This allows Meson to run on macOS, where shared modules cannot be linked
against.

testsuite/reftests/meson.build

index e77a8579a4071284dcdbf10ad194c87f6d71991c..37a38265ad4deb6086c7caf5ff84ca71656700ef 100644 (file)
@@ -3,7 +3,7 @@ libgtkreftestprivate = shared_library('gtkreftestprivate',
   'reftest-compare.c', 'reftest-module.c', 'reftest-snapshot.c',
   dependencies : libgtk_dep)
 
-libreftest = shared_module('reftest',
+libreftest = shared_library('reftest',
   [ 'expand-expander.c',
     'frame-inhibitor.c',
     'letter-spacing.c',